home *** CD-ROM | disk | FTP | other *** search
/ BBS in a Box 4 / BBS in a Box - Macintosh - Volume IV (January 1992) (BBS in a Box).iso / Files / Prog / M / LSC213.cpt / ToolboxUtil.h < prev    next >
Encoding:
C/C++ Source or Header  |  1987-09-26  |  742 b   |  45 lines  |  [TEXT/KAHL]

  1.  
  2. /*
  3.  *  ToolboxUtil.h
  4.  *
  5.  *  Copyright (c) 1986, 1987 THINK Technologies, Inc.
  6.  *  These interfaces are based on information copyrighted
  7.  *  by Apple Computer, Inc., 1985, 1986, 1987.
  8.  *
  9.  */
  10.  
  11. #ifndef    _ToolboxUtil_
  12. #define _ToolboxUtil_
  13.     
  14. #ifndef    _Quickdraw_
  15. #include "Quickdraw.h"
  16. #endif
  17.  
  18. #define    sysPatListID    0
  19.  
  20. enum {
  21.     iBeamCursor = 1,
  22.     crossCursor,
  23.     plusCursor,
  24.     watchCursor
  25. };
  26.  
  27. typedef    struct    
  28.     {
  29.     long    hiLong;
  30.     long    loLong;
  31.     } Int64Bit ;
  32.  
  33.  
  34. /*  functions returning non-integral values  */
  35. pascal StringHandle NewString();
  36. pascal StringHandle GetString();
  37. pascal Handle GetIcon();
  38. pascal PatHandle GetPattern();
  39. pascal CursHandle GetCursor();
  40. pascal PicHandle GetPicture();
  41. double Fix2X(Fixed);
  42. double Frac2X(Fract);
  43.  
  44.  
  45. #endif _ToolboxUtil_